home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_01_04
/
1n04056a
< prev
next >
Wrap
Text File
|
1990-07-17
|
517b
|
23 lines
init_menu();
while (choice != EXIT_PROGRAM)
{
choice = INVALID;
key = Input(&x, &y);
choice = disp_menu(key, x, y);
key = 0;
switch (choice)
{
case FIRST_CHOICE:
execute_first();
break;
case SECOND_CHOICE:
execute_second();
break;
etc.
}
}